home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / gawk_2_15_5.lha / gawk-2.15.5 / alloca.ch next >
Text File  |  1995-01-20  |  621b  |  34 lines

  1. Changes for ALLOCA.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.54
  4. #define    NULL    0            /* null pointer constant */
  5.  
  6. extern void    free();
  7. extern pointer    xmalloc();
  8. extern int    write();
  9. extern void    exit();
  10. @y
  11. #include <stdlib.h>
  12. extern pointer    xmalloc(int);
  13. extern int    write(int, const void *, unsigned int);
  14. @z
  15.  
  16. @x l.85
  17. find_stack_direction (/* void */)
  18. @y
  19. find_stack_direction (void)
  20. @z
  21.  
  22. @x l.141
  23. alloca (size)            /* returns pointer to storage */
  24.      unsigned    size;        /* # bytes to allocate */
  25. @y
  26. alloca (            /* returns pointer to storage */
  27.      unsigned    size)        /* # bytes to allocate */
  28. @z
  29.  
  30. @x l.198
  31.    char *malloc();
  32. @y
  33. @z
  34.